Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

120 rader
2.9 KiB

  1. <template>
  2. <section class="flex flex-col items-center min-h-screen">
  3. <div class="container w-full p-6 max-w-6xl grow flex flex-col items-center bg-slate-300">
  4. <NuxtLink class="w-full m-4 flex justify-end" :to="'/'">
  5. <uiClose />
  6. </NuxtLink>
  7. <img class="rounded-lg mb-6" :src="config.public.IMG_BASE_URL + film?.poster_path" :alt="film?.title">
  8. <div class="poster flex flex-col lg:flex-row w-full justify-center">
  9. <span>
  10. <h1 class="text-4xl font-bold leading-relaxed">
  11. {{ film?.title }}
  12. </h1>
  13. <h2 class="text-2xl text-slate-700">
  14. {{ director }}
  15. </h2>
  16. <p class="my-8">
  17. {{ film?.overview }}
  18. </p>
  19. <p>
  20. {{ formatPercent(film?.vote_average as number) }} %
  21. </p>
  22. <p>
  23. {{ film?.vote_count }} votes
  24. </p>
  25. <div class="flex justify-center">
  26. <ul class="flex items-center overflow-y-hidden overflow-x-scroll w-full max-w-lg">
  27. <li v-for="star in film?.credits.cast" class="flex flex-col items-center p-4 bg-slate-200 rounded m-4">
  28. <UiPerson class="h-10" />
  29. {{ star.name }}
  30. </li>
  31. </ul>
  32. </div>
  33. <ul class="flex">
  34. <li v-for="genre in film?.genres" class="p-8"> {{ genre.name }} </li>
  35. </ul>
  36. </span>
  37. </div>
  38. <div>
  39. <CommentForm :filmId="film?.id" />
  40. <CommentList :filmId="film?.id" />
  41. </div>
  42. </div>
  43. </section>
  44. </template>
  45. <script setup lang="ts">
  46. const route = useRoute()
  47. const config = useRuntimeConfig()
  48. interface FilmDetails {
  49. title: string,
  50. id: number,
  51. poster_path: string,
  52. release_date: number,
  53. vote_average: number,
  54. vote_count: number,
  55. genres: genre[],
  56. overview: string,
  57. credits: Credits,
  58. }
  59. interface genre {
  60. id: number,
  61. name: string,
  62. }
  63. interface Credits {
  64. id: string,
  65. cast: Cast[],
  66. crew: Crew[],
  67. }
  68. interface Cast {
  69. adult: boolean,
  70. gender: number,
  71. id: number,
  72. known_for_department: string,
  73. name: string,
  74. original_name: string,
  75. popularity: number,
  76. profile_path: string,
  77. cast_id: number,
  78. character: string,
  79. credit_id: string,
  80. order: number,
  81. }
  82. interface Crew {
  83. adult: boolean,
  84. gender: number,
  85. id: number,
  86. known_for_department: string,
  87. name: string,
  88. original_name: string,
  89. popularity: number,
  90. profile_path: string | null,
  91. credit_id: string,
  92. department: string,
  93. job: string,
  94. }
  95. const film: Ref<FilmDetails | null> = ref(null)
  96. const filmId: Ref<string> = ref('')
  97. const director: Ref<string> = ref('')
  98. filmId.value = route.params.id as string
  99. if (filmId.value !== '') {
  100. const { data } = await useFetch(`/api/details/${filmId.value}`)
  101. film.value = data.value as FilmDetails
  102. const dataDirector = film.value.credits.crew.filter((member) => member.job === 'Director')
  103. director.value = dataDirector[0].name
  104. }
  105. onMounted(() => {
  106. window.scrollTo(0, 0)
  107. })
  108. </script>